home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / automake.0 / automake / automake-1.0 / tests / confincl.test < prev    next >
Encoding:
Text File  |  1996-03-01  |  319 b   |  19 lines

  1. #! /bin/sh
  2.  
  3. # This tests for a bug reported by Gord Matzigkeit.
  4. # If config.h is not used, @CONFIG_INCLUDE_SPEC@ should not appear
  5. # in Makefile.in.
  6.  
  7. . $srcdir/defs || exit 1
  8.  
  9. cat > Makefile.am << 'EOF'
  10. bin_PROGRAMS = fred
  11. EOF
  12.  
  13. $AUTOMAKE || exit 1
  14.  
  15. if grep '@CONFIG_INCLUDE_SPEC@' Makefile.in; then
  16.    exit 1
  17. fi
  18. exit 0
  19.